net/http.http2Framer.wbuf (field)
32 uses
net/http (current package)
h2_bundle.go#L1859: wbuf []byte
h2_bundle.go#L1912: f.wbuf = append(f.wbuf[:0],
h2_bundle.go#L1927: length := len(f.wbuf) - http2frameHeaderLen
h2_bundle.go#L1931: _ = append(f.wbuf[:0],
h2_bundle.go#L1939: n, err := f.w.Write(f.wbuf)
h2_bundle.go#L1940: if err == nil && n != len(f.wbuf) {
h2_bundle.go#L1955: f.debugFramerBuf.Write(f.wbuf)
h2_bundle.go#L1964: func (f *http2Framer) writeByte(v byte) { f.wbuf = append(f.wbuf, v) }
h2_bundle.go#L1966: func (f *http2Framer) writeBytes(v []byte) { f.wbuf = append(f.wbuf, v...) }
h2_bundle.go#L1968: func (f *http2Framer) writeUint16(v uint16) { f.wbuf = append(f.wbuf, byte(v>>8), byte(v)) }
h2_bundle.go#L1971: f.wbuf = append(f.wbuf, byte(v>>24), byte(v>>16), byte(v>>8), byte(v))
h2_bundle.go#L2273: f.wbuf = append(f.wbuf, byte(len(pad)))
h2_bundle.go#L2275: f.wbuf = append(f.wbuf, data...)
h2_bundle.go#L2276: f.wbuf = append(f.wbuf, pad...)
h2_bundle.go#L2703: f.wbuf = append(f.wbuf, p.BlockFragment...)
h2_bundle.go#L2704: f.wbuf = append(f.wbuf, http2padZeros[:p.PadLength]...)
h2_bundle.go#L2847: f.wbuf = append(f.wbuf, headerBlockFragment...)
h2_bundle.go#L2956: f.wbuf = append(f.wbuf, p.BlockFragment...)
h2_bundle.go#L2957: f.wbuf = append(f.wbuf, http2padZeros[:p.PadLength]...)